Welcome![Sign In][Sign Up]
Location:
Search - virtual file

Search list

[Windows Develop源代码-高源

Description: 包括10个源码:1 令系统托盘(提示区/Sys tray)中的图标显示气泡提示框(Tool Tip)的代码 2 软盘格式化程序 3 一个虚拟驱动盘映射器 4 这个软件可以得到大多数的“高级”系统信息,比如系统缓存的密码、PROXY设置、网卡MAC等 5 用过Flashget和网络蚂蚁的朋友应该知道在IE中右击右击菜单有使用(xxxxx)下载.本代码就实现此功能。可以获取在网页中选择的文本,链接 地址,图片. 6 引起轰动的源码,能在视窗里每一个窗口最小化按钮旁加一个新按钮,这个新按钮的功能是将窗口最小化到系统状态栏,强烈推荐!!! 7 一个系统程序,可以察看系统中当前窗口的局柄等信息,可以察看系统窗口,例如任务栏、开始按钮。可以通过鼠标移动察看光标位置下的 窗口的信息 8 通过Winsock实现的Web服务器程序,目前只支持html格式,如ASP,CGI等可能自己扩展,通过此程序可以学习掌握Winsock控件的使用,多用户的考虑 9 一个可以获得Windows可执行文件(Portable Executable File)的文件头信息的程序 10 可以放大部分图片, 象放大镜.-including 10 Source : Order a system tray (Hint / AB tray), the icon shows bubble boxes (Tool Tip) 2 floppy disk formatting code procedures 3 a virtual disk drive mapping for the four software can be the most "advanced" system information, such as the password caching system, PROXY setup, MAC used five Flashget and network ant friends should know that the IE right-click a right-click menu use (xxxxx). The code on the realization of this function. Can be obtained on the website, select the text link address, and pictures. 6 caused a stir source code, Windows Lane in every one of the smallest window button side a new button, This new button's function is to minimize the window to the system status bar, and strongly recommended! ! ! 7 a system procedures, the system can see the
Platform: | Size: 433289 | Author: none | Hits:

[SCM51mcu-Virtual-serial-ports

Description: 功能:在pc上,利用纯软件实现51单片机的串口的输入输出仿真, 用到的软件:keil、proteus、虚拟串口及串口调试助手。 1.pc上安装 虚拟串口 然后将com3和com4连接起来 2.pc上运行 串口调试助手,设置: com4 9600 N 8 1 3.pc上安装 proteus软件 4.运行例程中的 simulate_proteus6.7文件,即可实现串口调试-Function: On the pc, the use of pure software 51 microcontroller serial input and output simulation, Software used: keil, proteus, virtual serial port and serial debugging assistant. Virtual serial ports installed on 1.pc com3 and com4 then connect 2.pc run on serial debugging assistant, set: com4 9600 N 8 1 3.pc proteus software installed 4. Run the routine simulate_proteus6.7 file, you can achieve serial debugging
Platform: | Size: 2042880 | Author: 赵显刚 | Hits:

[Linux-Unixvfs

Description: Overview of the Linux Virtual File System.
Platform: | Size: 18432 | Author: kunxsnr | Hits:

[Consolevfs

Description: c++开发虚拟文件系统,支持用户管理,权限设置,虚拟系统与本机磁盘系统间的导入与导出功能,该系统拥有磁盘格式化,目录,文件创建,浏览,编辑,删除,等功能-C++ development of a virtual file system, support for user management, permissions settings, import and export functions of virtual system and the unit disk system, this system has a disk formatting, directory, file creation, browse, edit, delete, and other functions
Platform: | Size: 39936 | Author: wangyong | Hits:

[Otherbook2.pdf

Description: 《深入理解Linux内核》 1.绪论 2.内存寻址 3.进程 4. 中断和异常 5. 定时测量 6. 内存管理 7. 进程地址空间 8. 系统调用 9.信号 10. 进程调度 11.内核同步 12. 虚拟文件系统 13. 管理I/O设备 14. 磁盘高速缓存 15. 访问正规文件 16. 交换 17. Ext2文件系统 18. 进程通信 19. 程序的执行-" Understanding the Linux Kernel" 1. Introduction 2. 3. memory addressing process interrupts and exceptions 4. 5. 6. timing measurement process address space memory management 7. 8. 9. signal system call 10. 11. kernel synchronization process scheduling 12. 13. The management of the virtual file system I/O device 14. The disk cache access regular files 15. 16. 17. Ext2 file system swap execution process communication 19. 18. Program
Platform: | Size: 14390272 | Author: yuyue | Hits:

[ConsoleMyFS

Description: 在磁盘上申请一块空间实现一个模拟文件系统,该模拟文件系统实现了增加、删除、打开、关闭、读写文件等文件系统的基本功能。-The program is a virtual file system. It supports some basic functions such as create ,delete, open, close, read and write files...
Platform: | Size: 5120 | Author: 杨翰典 | Hits:

[Linux-Unixaf_vfs

Description: af_vfs.h Virtual file operations for the Audio File Library.
Platform: | Size: 6144 | Author: fuesohun | Hits:

[Linux-UnixFile-Operations

Description: 在 Linux 中 FIFO 是一种进程之间的管道通信机制。Linux 支持完整的 FIFO通信 机制。 本实验内容,通过使用文件操作,仿真 FIFO(先进先出)结构以及生产者-消费者运行模型。 本实验中需要打开两个虚拟终端,分别运行生产者程序(producer)和消费者程序(customer)。此时两个进程同时对同一个文件进行读写操作。因为这个文件是临界资源,所以可以使用文件锁机制来保证两个进程对文件的访问都是原子操作。 先启动生产者进程,它负责创建仿真 FIFO 结构的文件(其实是一个普通文件)并投入生产,就是按照给定的时间间隔,向 FIFO 文件写入自动生成的字符(在程序中用宏定义选择使用数字还是使用英文字符),生产周期以及要生产的资源数通过参数传递给进程(默认生产周期为 1s,要生产的资源数为 10 个字符)。 后启动的消费者进程按照给定的数目进行消费,首先从文件中读取相应数目的字符并在屏幕上显示,然后从文件中删除刚才消费过的数据。为了仿真 FIFO 结构,此时需要使用两次复制来实现文件内容的偏移。每次消费的资源数通过参数传递给进程,默认值为10 个字符。 -Linux is in FIFO pipe communication mechanism between processes. Linux supports a full FIFO communication mechanism. The experiment content, through the use of file operations, simulation FIFO (First In First Out) structure as well as producer- consumer model is run. In this study we need to open two virtual terminals, each running program producers (producer) and consumer programs (customer). At this point two processes simultaneously on the same file for read and write operations. Because this document is the critical resource, so you can use the file locking mechanism to ensure access to the file two processes are atomic. Producers first start process, it is responsible for creating the simulation FIFO file structure (actually a common file) and put into production, is in accordance with a given time interval, automatically generated characters written into the FIFO file (using macros define the selection the use of digital still use English characters), the production cycle and t
Platform: | Size: 4096 | Author: 忆昔 | Hits:

[OS programgio

Description: windows 虚拟文件系统 基础编程windows 虚拟文件系统 基础编程-Virtual File System-based programming windows windows-based virtual file system programming
Platform: | Size: 2158592 | Author: ppop | Hits:

[Otherlinux-vfile

Description: linux的虚拟文件系统.pdf 。-linux virtual file system。
Platform: | Size: 377856 | Author: yao | Hits:

[Windows Developobwtn

Description: 虚拟文件管理系统 Virtual file management system-The Virtual file management system of Virtual file management system
Platform: | Size: 32768 | Author: ETM!91838 | Hits:

[File OperateLab6_FileSystem

Description: 虚拟磁盘。创建文件等。命令行演示,通过模拟一个.dat文件创造出一个dat32虚拟文件系统-Virtual disk. Create file. Command line presentation,Create a dat32 virtual file system by simulating a.Dat file
Platform: | Size: 65536 | Author: Elise | Hits:

[Windows Developadvfce_code_for

Description: 此代码为虚拟文件课程设计,是本人自己写的,望能提出建议-This code for the curriculum design of the virtual file, was written by herself, please advice
Platform: | Size: 16384 | Author: jritacal | Hits:

[Windows DevelopzleaseThiscurriculum

Description: 此代码为虚拟文件课程设计,是本人自己写的,望能提出建议-This code for the curriculum design of the virtual file, was written by herself, please advice
Platform: | Size: 17408 | Author: nbj!4303 | Hits:

[Windows Develop208024

Description: 此代码为虚拟文件课程设计,是本人自己写的,望能提出建议-This code for the curriculum design of the virtual file, was written by herself, please advice
Platform: | Size: 16384 | Author: nbj!4303 | Hits:

[Windows Develop49130515

Description: 此代码为虚拟文件课程设计,是本人自己写的,望能提出建议(This code for the curriculum design of the virtual file, was written by herself, please advice)
Platform: | Size: 15360 | Author: Dobahsw | Hits:

[Internet-Network40165220

Description: 虚拟文件管理系统 Virtual file management system()
Platform: | Size: 31744 | Author: uejan | Hits:

[OS programqstig763

Description: 虚拟文件管理系统 Virtual file management system()
Platform: | Size: 31744 | Author: Xavthe | Hits:

[OtherSetupVirtualCloneDrive5470

Description: VIRTUAL CD,DVD FOR READ FILE ISO
Platform: | Size: 1623040 | Author: raquel | Hits:

[OtherET199加密狗etfs底层虚拟文件制作教程

Description: ET199加密狗etfs底层虚拟文件制作教程(ET199 dongle ETFs bottom layer virtual file making tutorial)
Platform: | Size: 12681216 | Author: pxdnh | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 35 »

CodeBus www.codebus.net